home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000335_news@columbia.edu _Fri Dec 10 10:04:49 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA00401
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 10 Dec 1999 10:04:48 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA10510
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 10 Dec 1999 10:00:28 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: generate umlaut over telnet?
  11. Date: 10 Dec 1999 15:00:26 GMT
  12. Organization: Columbia University
  13. Message-ID: <82r4ia$a8b$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <1999Dec10.091814.1@eisner>,
  17. Bob Koehler <koehler@eisner.decus.org> wrote:
  18. :  I've noticed that I can generate the letter ∩┐╜ (u with an umlaut,
  19. :  decimal 252) locally with no trouble (compose u "), but not over a
  20. :  telnet connection.  The only real difference I can see is that the
  21. :  local LAT connection is eightbit, and the remote telnet connection is
  22. :  not.
  23. :  I know I can use specins in EDT to get this character into a file,
  24. :  but is there any way to generate this character over a telnet
  25. :  connection when I'm not using an editor?  So far all attemtps have
  26. :  simply rendered |.
  27. :  It doens't have to return legibly over telnet (the one I inserted above
  28. :  echos now in TPU as a reverse question mark over telnet, but when I'm at
  29. :  DCL it echos correctly from TYPE'ing a file over telnet).
  30. It depends on your Telnet client.  I can speak for C-Kermit; if you tell
  31. it to "set command bytesize 8" and "set terminal bytesize 8", this gives
  32. a clear 8-bit path between your keyboard and screen and the remote host,
  33. and you should be able to see your Umlaute.  (In C-Kermit 7.0:
  34.  
  35.   http://www.columbia.edu/kermit/ck70.html
  36.  
  37. the shortcut command, "eight", makes all data paths be 8-bit.)
  38.  
  39. Furthermore, if the remote host uses a different character set than your
  40. terminal or emulator, you can have C-Kermit convert for you.  For example,
  41. if your local VMS character set is DEC Multinational, and the remote
  42. computer uses (say) HP-Roman8, just tell C-Kermit to:
  43.  
  44.   set terminal character-set hp-roman8 dec-multinational
  45.  
  46. and then you'll have the right stuff on both ends, and it will look right
  47. no matter which end you view it from.
  48.  
  49. - Frank